Skip to content

Commit

Permalink
Merge pull request #4 from molovo/fix_syntax_error
Browse files Browse the repository at this point in the history
Fix syntax error in ZSH 5.0.x
  • Loading branch information
James Dinsdale authored Dec 21, 2016
2 parents ed9e6c5 + 944d0ea commit 3059256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion revolver
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function _revolver_process() {
shift frames

# Create a never-ending loop
while [[ 1=1 ]]; do
while [[ 1 -eq 1 ]]; do
# If the statefile has been removed, exit the script
# to prevent it from being orphaned
if [[ ! -f $statefile ]]; then
Expand Down

0 comments on commit 3059256

Please sign in to comment.