Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit be51033

Browse files
committedJul 15, 2024
Change executable's name
1 parent 6fef3e6 commit be51033

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
 

‎.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
bufferflow_tinyg_old.md
33

4-
/arduino-create-agent*
5-
!/arduino-create-agent*/
4+
/arduino-cloud-agent*
5+
!/arduino-cloud-agent*/
66
rsrc.syso
77

88
snapshot/*

‎Taskfile.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tasks:
3737
cmds:
3838
- task: go:build
3939
vars:
40-
PROJECT_NAME: arduino-create-agent_cli
40+
PROJECT_NAME: arduino-cloud-agent_cli
4141
ADDITIONAL_FLAGS: -tags cli
4242

4343
go:build-win:
@@ -46,7 +46,7 @@ tasks:
4646
- rsrc -arch {{.GOARCH}} -manifest manifest.xml # GOARCH shoud be either amd64 or 386
4747
- task: go:build
4848
vars:
49-
PROJECT_NAME: arduino-create-agent.exe
49+
PROJECT_NAME: arduino-cloud-agent.exe
5050
WIN_FLAGS: -H=windowsgui
5151
- rm *.syso # rm file to avoid compilation problems on other platforms
5252
vars:
@@ -58,7 +58,7 @@ tasks:
5858
cmds:
5959
- task: go:build
6060
vars:
61-
PROJECT_NAME: arduino-create-agent_cli.exe
61+
PROJECT_NAME: arduino-cloud-agent_cli.exe
6262
ADDITIONAL_FLAGS: -tags cli
6363

6464
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-task/Taskfile.yml
@@ -140,7 +140,7 @@ tasks:
140140

141141
vars:
142142
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/release-go-task/Taskfile.yml
143-
PROJECT_NAME: arduino-create-agent
143+
PROJECT_NAME: arduino-cloud-agent
144144
# build vars
145145
COMMIT:
146146
sh: echo "$(git log --no-show-signature -n 1 --format=%h)"

‎tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
@pytest.fixture(scope="function")
2828
def agent(pytestconfig):
2929
if platform.system() == "Windows":
30-
agent = str(Path(pytestconfig.rootdir) / "arduino-create-agent_cli.exe")
30+
agent = str(Path(pytestconfig.rootdir) / "arduino-cloud-agent_cli.exe")
3131
else:
32-
agent = str(Path(pytestconfig.rootdir) / "arduino-create-agent")
32+
agent = str(Path(pytestconfig.rootdir) / "arduino-cloud-agent")
3333
env = {
3434
# "ARDUINO_DATA_DIR": data_dir,
3535
# "ARDUINO_DOWNLOADS_DIR": downloads_dir,

0 commit comments

Comments
 (0)
Please sign in to comment.