Skip to content

Commit

Permalink
Fix wrong path in 'rm -rf volumes/bb'
Browse files Browse the repository at this point in the history
Commit 4acd195 accidentally changed
"volumes/bb" to "bb". Fix that.

Relates to #28.
  • Loading branch information
moroten authored and stagnation committed Feb 1, 2024
1 parent 4042469 commit e404c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ setup () {
set -x

{ sudo fusermount -u "$fuse_dir_to_unmount" && sleep 1; } || true
sudo rm -rf bb "volumes/${worker_fuse}" "volumes/${worker_hardlinking}"
sudo rm -rf volumes/bb "volumes/${worker_fuse}" "volumes/${worker_hardlinking}"

mkdir -p volumes
mkdir -m 0777 "volumes/${worker_fuse}" "volumes/${worker_fuse}"/{build,cas,cas/persistent_state}
Expand Down

0 comments on commit e404c1a

Please sign in to comment.