Skip to content

Commit

Permalink
Corrects merge issue for header download (#330)
Browse files Browse the repository at this point in the history
TL;DR
-----

Fixes an issue with were the branch header was being downloaded

Details
-------

The last updates the template got merged in with the header download in
the track setup script referring to the branch. Once the branch was
deleted it couldn't be downloaded any longer. This change fixes that.
  • Loading branch information
crdant committed May 3, 2024
1 parent 2a244e6 commit 7eb2ece
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion instruqt/shared-env-template/track_scripts/setup-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -euxo pipefail

# use our shared libary in setup scripts
curl -s -o /etc/profile.d/header.sh https://raw.githubusercontent.com/replicatedhq/kots-field-labs/main/libs/header.sh
curl -s -o /etc/profile.d/header.sh https://raw.githubusercontent.com/replicatedhq/replicated-field-labs/main/libs/header.sh
source /etc/profile.d/header.sh

# simple SSH client setup so we can SSH to/from the shell
Expand Down
2 changes: 1 addition & 1 deletion instruqt/shared-env-template/track_scripts/setup-shell
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euxo pipefail
HOME_DIR=/home/replicant

# use our shared libary in setup scripts
curl -s -o /etc/profile.d/header.sh https://raw.githubusercontent.com/replicatedhq/replicated-field-labs/chore/crdant/refines-template/libs/header.sh
curl -s -o /etc/profile.d/header.sh https://raw.githubusercontent.com/replicatedhq/replicated-field-labs/main/libs/header.sh
source /etc/profile.d/header.sh

# simple SSH client setup so we can SSH to/from the shell
Expand Down

0 comments on commit 7eb2ece

Please sign in to comment.