-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/v2/local trigger #9
Open
jabou
wants to merge
10
commits into
feature/v2/base
Choose a base branch
from
feature/v2/local-trigger
base: feature/v2/base
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+374
−259
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ad979c2
Copy deploy options to bin folder
jabou 9431356
Add init option
jabou dcf2a76
Update deploy options
jabou dd83090
Mark methods as private
jabou 7cc6e4b
Rename folder with sources files
jabou aacee65
Move code blocks to private functions in separate files
jabou 1f857d6
Set auto update to load local files
jabou dc4707c
Add support for v2 tag version
jabou 81168df
Add trigger command, disable anything else
jabou 76c2461
Merge branch 'feature/v2/base' into feature/v2/local-trigger
jabou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
################################# | ||
# UPDATE # | ||
################################# | ||
|
||
function __script_auto_update { | ||
echo | ||
echo "Please wait until main script is finished with updating..." | ||
echo | ||
echo "Fetching new data..." | ||
|
||
# Create temp folder | ||
# if [ ! -d ".app_deploy_tmp" ]; then | ||
# mkdir .app_deploy_tmp | ||
# else | ||
# rm -rf .app_deploy_tmp | ||
# fi | ||
|
||
# Get new data | ||
# git clone --quiet https://github.com/infinum/app-deploy-script.git --branch feature/v2/local-trigger .app_deploy_tmp | ||
# echo "Updating..." | ||
|
||
# # Move new data to bin / helpers | ||
# cat .app_deploy_tmp/app-deploy.sh > /usr/local/bin/app-deploy | ||
# cp -a .app_deploy_tmp/sources/. /usr/local/bin/.app-deploy-sources/ | ||
|
||
# LOCAL DEVELOPMENT | ||
# Comment when not in use | ||
cat /Users/jaco/Infinum/Infinum_projects/AppDeployScript/app-deploy-script/app-deploy.sh > /usr/local/bin/app-deploy | ||
cp -a /Users/jaco/Infinum/Infinum_projects/AppDeployScript/app-deploy-script/sources/. /usr/local/bin/.app-deploy-sources/ | ||
Comment on lines
+28
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should comment this out maybe? And maybe "sanitize" your local path 😄 |
||
|
||
# Remove temp folder | ||
# rm -rf .app_deploy_tmp | ||
|
||
echo "Updating finished!" | ||
exit 0 | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You will not forget to remove this, right? 😄