Only record the new commit if all goes well
This commit is contained in:
parent
e36a4b876c
commit
634773fcf6
|
@ -1668,7 +1668,6 @@ function set_repo_commit {
|
|||
if [[ "$CURRENT_REPO_COMMIT" != "$repo_commit" ]]; then
|
||||
cd $repo_dir
|
||||
git_pull $repo_url $repo_commit
|
||||
sed -i "s/${repo_commit_name}.*/${repo_commit_name}:$repo_commit/g" $COMPLETION_FILE
|
||||
|
||||
# application specific stuff after updating the repo
|
||||
if [[ $repo_dir == *"www"* ]]; then
|
||||
|
@ -1743,6 +1742,8 @@ function set_repo_commit {
|
|||
systemctl restart ipfs
|
||||
systemctl daemon-reload
|
||||
fi
|
||||
|
||||
sed -i "s/${repo_commit_name}.*/${repo_commit_name}:$repo_commit/g" $COMPLETION_FILE
|
||||
fi
|
||||
else
|
||||
echo "${repo_commit_name}:${repo_commit}" >> $COMPLETION_FILE
|
||||
|
|
Loading…
Reference in New Issue