File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ jobs:
383
383
runs-on : ubuntu-18.04
384
384
needs : code-sign-mac-installers
385
385
env :
386
- PLUGIN_TARGET : " /CreateBridgeStable/"
386
+ TARGET : " /CreateBridgeStable/"
387
387
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
388
388
AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
389
389
@@ -452,5 +452,5 @@ jobs:
452
452
file : release/*
453
453
454
454
- name : Upload release files on Arduino downloads servers
455
- run : aws s3 sync release/ s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.PLUGIN_TARGET }} --include "*"
455
+ run : aws s3 sync release/ s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.TARGET }} --include "*"
456
456
if : steps.prerelease.outputs.IS_PRE != 'true'
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ func (s *Systray) start() {
48
48
s .updateMenuItem (mRmCrashes , s .CrashesIsEmpty ())
49
49
50
50
// Add pause/quit
51
- mPause := systray .AddMenuItem ("Pause Plugin " , "" )
51
+ mPause := systray .AddMenuItem ("Pause Agent " , "" )
52
52
systray .AddSeparator ()
53
- mQuit := systray .AddMenuItem ("Quit Plugin " , "" )
53
+ mQuit := systray .AddMenuItem ("Quit Agent " , "" )
54
54
55
55
// Add configs
56
56
s .addConfigs ()
@@ -116,9 +116,9 @@ func (s *Systray) RemoveCrashes() {
116
116
func (s * Systray ) startHibernate () {
117
117
systray .SetIcon (icon .GetIconHiber ())
118
118
119
- mResume := systray .AddMenuItem ("Resume Plugin " , "" )
119
+ mResume := systray .AddMenuItem ("Resume Agent " , "" )
120
120
systray .AddSeparator ()
121
- mQuit := systray .AddMenuItem ("Quit Plugin " , "" )
121
+ mQuit := systray .AddMenuItem ("Quit Agent " , "" )
122
122
123
123
// listen for events
124
124
go func () {
You can’t perform that action at this time.
0 commit comments