Skip to content

Commit

Permalink
Quick fix for transcrypt when secrets are missing, while we wait for …
Browse files Browse the repository at this point in the history
…an upstream update.
  • Loading branch information
mrmachine committed Jun 17, 2020
1 parent b385eea commit 2832827
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ixc_django_docker/bin/transcrypt
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ force_checkout() {
cd "$REPO" || die 1 'could not change into the "%s" directory' "$REPO"
IFS=$'\n'
for file in $encrypted_files; do
rm "$file"
rm -f "$file"
git checkout --force HEAD -- "$file" >/dev/null
done
unset IFS
Expand Down
2 changes: 1 addition & 1 deletion ixc_django_docker/bin/transcrypt-v1-compatible
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ force_checkout() {
cd "$REPO" || die 1 'could not change into the "%s" directory' "$REPO"
IFS=$'\n'
for file in $encrypted_files; do
rm "$file"
rm -f "$file"
git checkout --force HEAD -- "$file" >/dev/null
done
unset IFS
Expand Down

0 comments on commit 2832827

Please sign in to comment.