Skip to content
Snippets Groups Projects

Parsing error fix

Open Jacob Hart requested to merge bash-script-bug-fix into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
#!/bin/bash
cd mirador-video-annotation
docker run --rm -v $PWD:/opt -it node:12 /bin/sh -c "cd /opt && npm install && npm run build:es"
docker run --rm -v "$(pwd):/opt" -it node:12 /bin/sh -c "cd /opt && npm install && npm run build:es"
cd ../annotations-plugin
docker run --rm -v $PWD:/opt -it node:12 /bin/sh -c "cd /opt && npm install && npm run build"
docker run --rm -v "$(pwd):/opt" -it node:12 /bin/sh -c "cd /opt && npm install && npm run build"
Loading