Skip to content

Commit b9e0cf1

Browse files
committed
handle absolute paths correctly
1 parent 1e0a937 commit b9e0cf1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.QtUpdateBridges.weakRef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cf2a6bb
1+
5444faa

src/bridge_deployer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ int bridge_deployer_run(bridge_deployer_t *obj){
101101
}
102102

103103
/* Determine the destination to save and source to copy from. */
104-
sprintf(bridge_path , "./%s/lib%sBridge.so" , plugins_dir , bridge_name);
104+
sprintf(bridge_path , "%s/lib%sBridge.so" , plugins_dir , bridge_name);
105105
bridge_src = get_bridge_source(bridge_name);
106106

107107
printl(info , "copying required bridge.");

0 commit comments

Comments
 (0)