Skip to content

Commit

Permalink
Update yarn download path in install_baas.sh (#6309)
Browse files Browse the repository at this point in the history
* Updated yarn download path in install_baas.sh

* Updated changelog
  • Loading branch information
Michael Wilkerson-Barker authored Feb 15, 2023
1 parent 18c99b7 commit e2dba2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* The following APIs are now implemented using std::filesystem: `try_make_dir`/`make_dir`, `make_dir_recursive`, `try_remove_dir`/`remove_dir`, `try_remove_dir_recursive`/`remove_dir_recursive`, `File::exists`, `File::is_dir`, `File::try_remove`/`File::remove`, `File::move`, `File::copy`, `File::last_write_time`, `File::get_free_space`
* `File::get_unique_id` now works on Windows
* Replaced manual path string conversion with `std::filesystem::path`
* Update yarn download path in install_baas.sh ([PR #6309](https://github.com/realm/realm-core/pull/6309))

----------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion evergreen/install_baas.sh
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ YARN="$WORK_PATH/yarn/bin/yarn"
if [[ ! -x "$YARN" ]]; then
echo "Getting yarn"
mkdir yarn && cd yarn
$CURL -LsS https://s3.amazonaws.com/stitch-artifacts/yarn/latest.tar.gz | tar -xz --strip-components=1
$CURL -LsS https://yarnpkg.com/latest.tar.gz | tar -xz --strip-components=1
cd -
mkdir "$WORK_PATH/yarn_cache"
fi
Expand Down

0 comments on commit e2dba2a

Please sign in to comment.