Skip to content

Commit efcde6c

Browse files
authored
chore(foundryup): update master refs to HEAD (#12479)
1 parent e108baa commit efcde6c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ the requirements below.
44
55
Bug fixes and new features should include tests.
66
7-
Contributors guide: https://github.com/foundry-rs/foundry/blob/master/CONTRIBUTING.md
7+
Contributors guide: https://github.com/foundry-rs/foundry/blob/HEAD/CONTRIBUTING.md
88
99
The contributors guide includes instructions for running rustfmt and building the
1010
documentation.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ If you are working in VSCode, we recommend you install the [rust-analyzer](https
131131

132132
If you are working on a larger feature, we encourage you to open up a draft pull request, to make sure that other contributors are not duplicating work.
133133

134-
If you would like to test the binaries built from your change, see [foundryup](https://github.com/foundry-rs/foundry/tree/master/foundryup).
134+
If you would like to test the binaries built from your change, see [foundryup](https://github.com/foundry-rs/foundry/tree/HEAD/foundryup).
135135

136-
If you would like to use a debugger with breakpoints to debug a patch you might be working on, keep in mind we currently strip debug info for faster builds, which is _not_ the default. Therefore, to use a debugger, you need to enable it on the workspace [`Cargo.toml`'s `dev` profile](https://github.com/foundry-rs/foundry/tree/master/Cargo.toml#L15-L18).
136+
If you would like to use a debugger with breakpoints to debug a patch you might be working on, keep in mind we currently strip debug info for faster builds, which is _not_ the default. Therefore, to use a debugger, you need to enable it on the workspace [`Cargo.toml`'s `dev` profile](https://github.com/foundry-rs/foundry/tree/HEAD/Cargo.toml#L15-L18).
137137

138138
#### Adding tests
139139

foundryup/foundryup

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ set -eo pipefail
33

44
# NOTE: if you make modifications to this script, please increment the version number.
55
# WARNING: the SemVer pattern: major.minor.patch must be followed as we use it to determine if the script is up to date.
6-
FOUNDRYUP_INSTALLER_VERSION="1.3.0"
6+
FOUNDRYUP_INSTALLER_VERSION="1.4.0"
77

88
BASE_DIR=${XDG_CONFIG_HOME:-$HOME}
99
FOUNDRY_DIR=${FOUNDRY_DIR:-"$BASE_DIR/.foundry"}
1010
FOUNDRY_VERSIONS_DIR="$FOUNDRY_DIR/versions"
1111
FOUNDRY_BIN_DIR="$FOUNDRY_DIR/bin"
1212
FOUNDRY_MAN_DIR="$FOUNDRY_DIR/share/man/man1"
13-
FOUNDRY_BIN_URL="https://raw.githubusercontent.com/foundry-rs/foundry/master/foundryup/foundryup"
13+
FOUNDRY_BIN_URL="https://raw.githubusercontent.com/foundry-rs/foundry/HEAD/foundryup/foundryup"
1414
FOUNDRY_BIN_PATH="$FOUNDRY_BIN_DIR/foundryup"
1515
FOUNDRYUP_JOBS=""
1616
FOUNDRYUP_IGNORE_VERIFICATION=false
@@ -676,7 +676,7 @@ Repo : https://github.com/foundry-rs/foundry
676676
Book : https://book.getfoundry.sh/
677677
Chat : https://t.me/foundry_rs/
678678
Support : https://t.me/foundry_support/
679-
Contribute : https://github.com/foundry-rs/foundry/blob/master/CONTRIBUTING.md
679+
Contribute : https://github.com/foundry-rs/foundry/blob/HEAD/CONTRIBUTING.md
680680
681681
.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx.xOx
682682

foundryup/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FOUNDRY_DIR="${FOUNDRY_DIR:-"$BASE_DIR/.foundry"}"
88
FOUNDRY_BIN_DIR="$FOUNDRY_DIR/bin"
99
FOUNDRY_MAN_DIR="$FOUNDRY_DIR/share/man/man1"
1010

11-
BIN_URL="https://raw.githubusercontent.com/foundry-rs/foundry/master/foundryup/foundryup"
11+
BIN_URL="https://raw.githubusercontent.com/foundry-rs/foundry/HEAD/foundryup/foundryup"
1212
BIN_PATH="$FOUNDRY_BIN_DIR/foundryup"
1313

1414
# Create the .foundry bin directory and foundryup binary if it doesn't exist.

0 commit comments

Comments
 (0)