Skip to content

Commit

Permalink
Create setup.sh (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickLiffen authored Dec 6, 2021
1 parent 2bb8ccf commit eb56aac
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .devcontainer/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env bash

function setup {
for d in */ ; do
[ -L "${d%/}" ] && continue
echo "Processing $d"
cd "$d"
npm install
npm run format
npm run build
cd ..
done
}

cd /workspaces/GCSMTTR/functions/helpers

setup

cd /workspaces/GCSMTTR/functions/authorizers

setup

cd /workspaces/GCSMTTR/functions/remediators

0 comments on commit eb56aac

Please sign in to comment.