-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add ability to skip config modifications * Update golden names to fork on OS * Remove incorrect newline in golden
- Loading branch information
Showing
4 changed files
with
108 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
client/testdata/TestInstallSkipConfigModification-InstallOutput-darwin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Please edit "~/.bashrc" to add: | ||
|
||
``` | ||
# Hishtory Config: | ||
export PATH="$PATH:/Users/runner/.hishtory" | ||
source /Users/runner/.hishtory/config.sh | ||
``` | ||
|
||
Please edit "~/.bash_profile" to add: | ||
|
||
``` | ||
# Hishtory Config: | ||
export PATH="$PATH:/Users/runner/.hishtory" | ||
source /Users/runner/.hishtory/config.sh | ||
``` | ||
|
||
Please edit "~/.zshrc" to add: | ||
|
||
``` | ||
# Hishtory Config: | ||
export PATH="$PATH:/Users/runner/.hishtory" | ||
source /Users/runner/.hishtory/config.zsh | ||
``` | ||
|
24 changes: 24 additions & 0 deletions
24
client/testdata/TestInstallSkipConfigModification-InstallOutput-linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Please edit "~/.bashrc" to add: | ||
|
||
``` | ||
# Hishtory Config: | ||
export PATH="$PATH:/home/runner/.hishtory" | ||
source /home/runner/.hishtory/config.sh | ||
``` | ||
|
||
Please edit "~/.bash_profile" to add: | ||
|
||
``` | ||
# Hishtory Config: | ||
export PATH="$PATH:/home/runner/.hishtory" | ||
source /home/runner/.hishtory/config.sh | ||
``` | ||
|
||
Please edit "~/.zshrc" to add: | ||
|
||
``` | ||
# Hishtory Config: | ||
export PATH="$PATH:/home/runner/.hishtory" | ||
source /home/runner/.hishtory/config.zsh | ||
``` | ||
|