Skip to content

Commit

Permalink
Workaround for prebuild ts
Browse files Browse the repository at this point in the history
  • Loading branch information
axonasif committed Oct 11, 2023
1 parent e331139 commit 07e102b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ image:

tasks:
- name: Project build (cache) and run instructions
init: cargo build
init: |
cargo build
# workaround for https://github.com/gitpod-io/gitpod/issues/524
find target -exec stat --format='%.Y %n' {} + > /workspace/.ts
command: |
# workaround for https://github.com/gitpod-io/gitpod/issues/524
while read -r ts file; do touch -d "@${ts}" "${file}"; done < /workspace/.ts
# Fully cleanup terminal
printf "\033[3J\033c\033[3J"
Expand Down

0 comments on commit 07e102b

Please sign in to comment.