Skip to content

Commit

Permalink
feat: update nitro to the latest version
Browse files Browse the repository at this point in the history
BREAKING CHANGE: remove ios prefix
  • Loading branch information
jpgarcia committed Nov 4, 2022
1 parent 91a1ea9 commit fcb2504
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"semantic-release": "19.0.5",
"nitro": "ssh://git@github.com:underscopeio/nitro.git#0.6.0"
"nitro": "ssh://git@github.com:underscopeio/nitro.git#develop"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
Expand Down
18 changes: 9 additions & 9 deletions step.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ if [[ -n ${root_directory} ]]; then
fi

if [[ -n ${scheme} ]]; then
args+=("--ios-scheme" "${scheme}")
args+=("--scheme" "${scheme}")
fi

if [[ -n ${xcconfig_path} ]]; then
args+=("--ios-xcconfig-path" "${xcconfig_path}")
args+=("--xcconfig-path" "${xcconfig_path}")
fi

# --------------
Expand Down Expand Up @@ -79,33 +79,33 @@ fi
# -----------

if [[ -n ${certificate_url} ]]; then
args+=("--ios-certificate-url" "${certificate_url}")
args+=("--certificate-url" "${certificate_url}")
fi

if [[ -n ${certificate_passphrase} ]]; then
args+=("--ios-certificate-passphrase" "${certificate_passphrase}")
args+=("--certificate-passphrase" "${certificate_passphrase}")
fi

if [[ -n ${codesigning_identity} ]]; then
args+=("--ios-codesigning-identity" "${codesigning_identity}")
args+=("--codesigning-identity" "${codesigning_identity}")
fi

if [[ -n ${provisioning_profile_urls} ]]; then
IFS='|' provisioning_profile_urls_value=("${provisioning_profile_urls}")
# shellcheck disable=SC2206
args+=("--ios-provisioning-profile-urls" ${provisioning_profile_urls_value[@]})
args+=("--provisioning-profile-urls" ${provisioning_profile_urls_value[@]})
fi

if [[ -n ${provisioning_profile_specifier} ]]; then
args+=("--ios-provisioning-profile-specifier" "${provisioning_profile_specifier}")
args+=("--provisioning-profile-specifier" "${provisioning_profile_specifier}")
fi

if [[ -n ${team_id} ]]; then
args+=("--ios-team-id" "${team_id}")
args+=("--team-id" "${team_id}")
fi

if [[ -n ${export_method} ]]; then
args+=("--ios-export-method" "${export_method}")
args+=("--export-method" "${export_method}")
fi

# -------
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2435,9 +2435,9 @@ nerf-dart@^1.0.0:
resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a"
integrity sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==

"nitro@ssh://git@github.com:underscopeio/nitro.git#0.6.0":
"nitro@ssh://git@github.com:underscopeio/nitro.git#develop":
version "0.6.0"
resolved "ssh://git@github.com:underscopeio/nitro.git#974d474103d48d58f3db7c2cd479ae1f6fee9c17"
resolved "ssh://git@github.com:underscopeio/nitro.git#91697a317b5b2881c0633c752acb7ec678beea92"

node-emoji@^1.11.0:
version "1.11.0"
Expand Down

0 comments on commit fcb2504

Please sign in to comment.