Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
helpers: repo_sync: don't use the operator &&
Because we run the script with set -e Any return value other than 0 causes the process to abort. Using the operator && causes the script to abort because when the command fails there is no path to follow. If we use the if clause operator we solve the problem. Signed-off-by: Jose Quaresma <[email protected]>
- Loading branch information