Skip to content

Commit a212495

Browse files
authored
Merge pull request #65 from openhie:fix-double-backslash
Fix path in runBashScript function - remove double backslash
2 parents b2c9cdb + e089f62 commit a212495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instant.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ const main = async () => {
266266
case 'swarm':
267267
for (const id of chosenPackageIds) {
268268
setEnvVars(allPackages[id])
269-
await runBashScript(`${allPackages[id].path}/`, 'swarm.sh', [
269+
await runBashScript(`${allPackages[id].path}`, 'swarm.sh', [
270270
main.command,
271271
mainOptions.mode
272272
])

0 commit comments

Comments
 (0)