Remove quotes from commands

test
dan 2020-10-26 15:54:55 -06:00
parent d7053b0325
commit 054c172f17
1 changed files with 10 additions and 10 deletions

View File

@ -5,16 +5,16 @@ steps:
- name: build_client
image: node
commands:
- "apt update"
- "apt install tree"
- "cd Server/src"
- "ls"
- "cd ../../"
- "cd Client"
- "npm install"
- "node node_modules/@angular/cli/bin/ng build --prod --configuration=production"
- "cd ../"
- "tree"
- apt update
- apt install tree
- cd Server/src
- ls
- cd ../../
- cd Client
- npm install
- node node_modules/@angular/cli/bin/ng build --prod --configuration=production
- cd ../
- tree
when:
event:
- push