Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/enhancements' into enhancements
Browse files Browse the repository at this point in the history
# Conflicts:
#	app/src/main/java/app/dependency/update/app/service/UpdateRepoService.java
  • Loading branch information
bibekaryal86 committed Jul 24, 2024
2 parents 1525096 + 00310e3 commit 4c77071
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/resources/scripts/GRADLE_DEPENDENCIES.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ if [ "$PWD" != "$repo_loc" ]; then
exit 1
fi

echo "Checkout main branch"
git checkout main 2>&1

# Create new branch for updates
echo "Creating new branch"
git checkout -b "$branch_name" 2>&1
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/resources/scripts/NPM_DEPENDENCIES.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ if [ "$PWD" != "$repo_loc" ]; then
exit 1
fi

echo "Checkout main branch"
git checkout main 2>&1
# Create new branch for updates
echo "Creating new branch"
git checkout -b "$branch_name" 2>&1
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/resources/scripts/PYTHON_DEPENDENCIES.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ if [ "$PWD" != "$repo_loc" ]; then
exit 1
fi

echo "Checkout main branch"
git checkout main 2>&1

# Create new branch for updates
echo "Creating new branch"
git checkout -b "$branch_name" 2>&1
Expand Down

0 comments on commit 4c77071

Please sign in to comment.