Skip to content

Commit

Permalink
Use forward slashes for Windows paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tfausak committed Jan 5, 2018
1 parent 33e6e21 commit 82fdb0e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Rocket League saves your replays in a folder that depends on your operating
system.

- Windows:
- `%UserProfile%\Documents\My Games\Rocket League\TAGame\Demos`
- For example: `C:\Users\Taylor\Documents\My Games\Rocket League\TAGame\Demos`
- `%UserProfile%/Documents/My Games/Rocket League/TAGame/Demos`
- For example: `C:/Users/Taylor/Documents/My Games/Rocket League/TAGame/Demos`
- macOS:
- `$HOME/Library/Application Support/Rocket League/TAGame/Demos`
- For example: `/Users/taylor/Library/Application Support/Rocket League/TAGame/Demos`
Expand Down
6 changes: 3 additions & 3 deletions tools/install-github-release.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
if (Test-Path c:\bin\github-release.exe) {} else {
if (Test-Path c:/bin/github-release.exe) {} else {
curl -OutFile github-release.zip -Uri https://github.com/tfausak/github-release/releases/download/1.1.0/github-release-1.1.0-windows.zip
7z x github-release.zip github-release.exe
mkdir c:\bin
mv github-release.exe c:\bin
mkdir c:/bin
mv github-release.exe c:/bin
}

github-release version
6 changes: 3 additions & 3 deletions tools/install-stack.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
if (Test-Path c:\bin\stack.exe) {} else {
if (Test-Path c:/bin/stack.exe) {} else {
curl -OutFile stack.zip -Uri https://github.com/commercialhaskell/stack/releases/download/v1.6.1/stack-1.6.1-windows-x86_64.zip
7z x stack.zip stack.exe
mkdir c:\bin
mv stack.exe c:\bin
mkdir c:/bin
mv stack.exe c:/bin
}

stack --version

0 comments on commit 82fdb0e

Please sign in to comment.