Skip to content

Commit 8595eb2

Browse files
committed
gitpod: use relative path
1 parent e104691 commit 8595eb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.gitpod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# and commit this file to your remote git repository to share the goodness with others.
44

55
tasks:
6-
- init: cd .. && mkdir release && cmake ../server
6+
- init: mkdir ../release && cd ../release && cmake $OLDPWD
77
command: cd ../release && cmake --build . && gp sync-done built
88
- name: Test
99
command: gp sync-await built && cd ../release && mysql-test/mtr --mem
1010
- name: Debug Build
11-
init: cd .. && mkdir debug && cd debug && cmake -DCMAKE_BUILD_TYPE=Debug ../server
11+
init: mkdir ../debug && cd debug && cmake -DCMAKE_BUILD_TYPE=Debug $OLDPWD
1212
command: cd ../debug && cmake --build . && gp sync-done debugbuild
1313
- name: Debug Test
1414
command: gp sync-await debugbuild && cd ../debug && mysql-test/mtr --mem

0 commit comments

Comments
 (0)