Skip to content

Commit

Permalink
Merge pull request #65 from openhie:fix-double-backslash
Browse files Browse the repository at this point in the history
Fix path in runBashScript function - remove double backslash
  • Loading branch information
rcrichton authored Nov 21, 2023
2 parents b2c9cdb + e089f62 commit a212495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const main = async () => {
case 'swarm':
for (const id of chosenPackageIds) {
setEnvVars(allPackages[id])
await runBashScript(`${allPackages[id].path}/`, 'swarm.sh', [
await runBashScript(`${allPackages[id].path}`, 'swarm.sh', [
main.command,
mainOptions.mode
])
Expand Down

0 comments on commit a212495

Please sign in to comment.