Skip to content

Commit

Permalink
fix(api,ssh): remove unnecessary quotes on build flag for development
Browse files Browse the repository at this point in the history
  • Loading branch information
henrybarreto authored and gustavosbarreto committed Sep 18, 2024
1 parent 88a375d commit 5f24c14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ included_extensions:
- .go
build_target_path: ""
build_path: /go/src/github.com/shellhub-io/shellhub/api
build_flags: ["-gcflags", 'all="-N -l"']
build_flags: ["-gcflags=all=-N -l"]
build_delay: 200ns
binary_name: api
command_flags: ["server"]
Expand Down
2 changes: 1 addition & 1 deletion ssh/refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ included_extensions:
- .go
build_target_path: ""
build_path: /go/src/github.com/shellhub-io/shellhub/ssh
build_flags: ["-tags", "internal_api", "-gcflags", 'all="-N -l"']
build_flags: ["-tags", "internal_api", "-gcflags=all=-N -l"]
build_delay: 200ns
binary_name: ssh
command_flags: []
Expand Down

0 comments on commit 5f24c14

Please sign in to comment.