mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-14 05:26:34 +02:00
Fix "[: ==: unary operator expected"
This commit is contained in:
parent
03a97c9690
commit
a4398b8b24
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ for rev in `releases` stable beta nightly; do
|
||||||
git commit --quiet --message "toolchain: $rev"
|
git commit --quiet --message "toolchain: $rev"
|
||||||
git checkout --quiet -b $rev
|
git checkout --quiet -b $rev
|
||||||
push+=("$rev:refs/heads/$rev")
|
push+=("$rev:refs/heads/$rev")
|
||||||
if [ ${minor[${rev%.*}]} == $rev ]; then
|
if [ "${minor[${rev%.*}]}" == $rev ]; then
|
||||||
push+=("$rev:refs/heads/${rev%.*}")
|
push+=("$rev:refs/heads/${rev%.*}")
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue