You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updating the finalize-deployment.sh script should actually run the newest one
Current Behavior
Right now it runs the old one, because it calls git pull inside it so it won't be updated at the time of calling
Possible Solution
The more hardcore fix is something like detecting if it changed and then rerunning the script inside the script. But I think the easiest way is probably just to do a ssh USER@IP bash -ic 'cd ~/server && git pull before running the script in our CI config, and maybe also do some checking to make sure that the pull was clean (no conflicts etc.)
The text was updated successfully, but these errors were encountered:
Expected Behavior
Updating the
finalize-deployment.sh
script should actually run the newest oneCurrent Behavior
Right now it runs the old one, because it calls git pull inside it so it won't be updated at the time of calling
Possible Solution
The more hardcore fix is something like detecting if it changed and then rerunning the script inside the script. But I think the easiest way is probably just to do a
ssh USER@IP bash -ic 'cd ~/server && git pull
before running the script in our CI config, and maybe also do some checking to make sure that the pull was clean (no conflicts etc.)The text was updated successfully, but these errors were encountered: