Skip to content

Commit

Permalink
feat: use /usr/bin/gp
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Aug 18, 2023
1 parent c076c90 commit 8204705
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ tasks:
- name: Ingress
init: >
git lfs pull &&
gp sync-done lfs
/usr/bin/gp sync-done lfs
command: ./services/ingress/build

- name: WebSocket proxy
init: ./services/proxy/build
command: ./watch /workspace/sour/services/proxy ./wsproxy 28785

- name: Game server
init: gp sync-await lfs && ./services/go/build
init: /usr/bin/gp sync-await lfs && ./services/go/build
command: ./watch /workspace/sour/services/go ./cluster

- name: Config
Expand All @@ -29,7 +29,7 @@ tasks:

- name: Client
init: >
gp sync-await lfs &&
/usr/bin/gp sync-await lfs &&
cd services/client &&
yarn install
command: /workspace/sour/services/client/build
Expand All @@ -38,13 +38,13 @@ tasks:
env:
ASSET_OUTPUT_DIR: /workspace/sour/build/assets
init: >
gp sync-await lfs &&
/usr/bin/gp sync-await lfs &&
./services/assets/build
command: ./watch /workspace/sour/services/assets cat

- name: Sauerbraten
init: >
gp sync-await lfs &&
/usr/bin/gp sync-await lfs &&
./services/game/build
env:
GAME_OUTPUT_DIR: /workspace/sour/build/game
Expand Down

0 comments on commit 8204705

Please sign in to comment.