Skip to content

Commit

Permalink
Fix create.sh scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
miwurster committed Mar 4, 2021
1 parent 896cfee commit dca9056
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ go get -v github.com/Masterminds/glide
go get -u github.com/FiloSottile/gvt
file_name=$(find . -type f -name '*.zip')
mkdir -d ~/go/src/${WORKDIR}
unzip file_name -d ~/go/src/${WORKDIR}
unzip $file_name -d ~/go/src/${WORKDIR}
cd ~/go/src/${WORKDIR}
glide install
gvt restore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ curl -sL https://deb.nodesource.com/setup_10.x | bash -
apt -y install nodejs
npm install --global yarn
file_name=$(find . -type f -name '*.zip')
unzip file_name -d .
unzip $file_name -d .
yarn install
exit 0

0 comments on commit dca9056

Please sign in to comment.