Commit d62d5e16 by github-actions

Transpile f3964f4b

parent e54d43aa
...@@ -21,12 +21,12 @@ git add contracts ...@@ -21,12 +21,12 @@ git add contracts
git checkout --quiet --detach git checkout --quiet --detach
if git rev-parse --quiet --verify "$target"; then if git rev-parse -q --verify "$target"; then
git reset --soft "$target" git reset --soft "$target"
git checkout "$target" git checkout "$target"
else else
git checkout --orphan "$target" git checkout --orphan "$target"
if [ -n "$base" ]; then if [ -n "$base" ] && git rev-parse -q --verify "$base"; then
git reset --soft "$base" git reset --soft "$base"
fi fi
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment