Skip to content

Commit

Permalink
Update the script
Browse files Browse the repository at this point in the history
  • Loading branch information
andyduong1920 committed Oct 28, 2023
1 parent 8db2f8b commit c24f9c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ package:
printf "Y\n" | vsce package

install:
code --install-extension bar-helper-0.5.5.vsix
rm bar-helper-0.5.5.vsix
code --install-extension bar-helper-0.5.6.vsix
rm bar-helper-0.5.6.vsix

package_and_install: compile package install

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bar-helper",
"displayName": "Bar Helper",
"description": "Run any command from the status bar.",
"version": "0.5.5",
"version": "0.5.6",
"publisher": "andyduong1920",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/editableArea/1_definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ export const runDBRemigrateItem = window.createStatusBarItem(
);
export const gitPushItem = window.createStatusBarItem(
StatusBarAlignment.Left,
-9
-10
);
export const gitStatusItem = window.createStatusBarItem(
StatusBarAlignment.Left,
-10
-9
);
export const gitCheckoutDevelopPullItem = window.createStatusBarItem(
StatusBarAlignment.Left,
Expand Down
2 changes: 1 addition & 1 deletion src/editableArea/3_commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const runGitStatusCommand = commands.registerCommand(
export const runGitCheckoutDevelopPullItemCommand = commands.registerCommand(
"barHelper.runGitCheckoutDevelopPull",
() => {
Utils.sendToTerminal("gco develop && g pull");
Utils.sendToTerminal("gco develop && ggpull");
}
);

Expand Down
2 changes: 1 addition & 1 deletion src/editableArea/4_behaviors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const setupItemBehaviors = () => {
);
Utils.setupItem(
BarItems.gitStatusItem,
"ℹ️ gst ⌃i",
"💹 gst ⌃i",
"git status",
"barHelper.runGitStatus"
);
Expand Down

0 comments on commit c24f9c9

Please sign in to comment.