Skip to content

Commit

Permalink
CHG - claimlinks overwrite instead of append in ps1 uuid flag
Browse files Browse the repository at this point in the history
  • Loading branch information
MRColorR committed Feb 12, 2024
1 parent 61a8bf6 commit bb2b648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runme.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ function fn_setupApp() {
# Generaing the claim link
$claimlink = "${claimURLBase}${UUID}"
colorprint "BLUE" "Save the following instructions/link somewhere to claim/register your ${CURRENT_APP} node/device after completing the setup and starting the apps stack: ${claimlink}"
$claimlink | Out-File -Append "claim${CURRENT_APP}NodeDevice.txt"
$claimlink | Set-Content -Path "claim${CURRENT_APP}NodeDevice.txt" -Force
colorprint "DEFAULT" "A new file containing this link has been created for you in the current directory"
}
"--cid" {
Expand Down

0 comments on commit bb2b648

Please sign in to comment.