Skip to content

Commit

Permalink
Fix strap.sh URL
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfierke committed Sep 13, 2024
1 parent 81938fe commit b9c4212
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/mstrap/paths_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Spectator.describe MStrap::Paths do
{% if flag?(:darwin) %}
expect(
MStrap::Paths::STRAP_SH_URL
).to eq("https://raw.githubusercontent.com/MikeMcQuaid/strap/master/bin/strap.sh")
).to eq("https://raw.githubusercontent.com/MikeMcQuaid/strap/main/strap.sh")
{% elsif flag?(:linux) %}
expect(
MStrap::Paths::STRAP_SH_URL
Expand Down
2 changes: 1 addition & 1 deletion src/mstrap/paths.cr
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module MStrap

{% if flag?(:darwin) %}
# :nodoc:
STRAP_SH_URL = "https://raw.githubusercontent.com/MikeMcQuaid/strap/master/bin/strap.sh"
STRAP_SH_URL = "https://raw.githubusercontent.com/MikeMcQuaid/strap/main/strap.sh"

{% if flag?(:aarch64) %}
# :nodoc:
Expand Down

0 comments on commit b9c4212

Please sign in to comment.