Skip to content

Commit

Permalink
Merge pull request #194 from Hoikas/pwsh_noprofile
Browse files Browse the repository at this point in the history
Fix problems related to dockersand.bat
  • Loading branch information
zrax committed Jul 10, 2024
2 parents dff4293 + 908bc6b commit c92125e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ testing server much more quickly and easily on Windows, Mac, or Linux.
the base docker container name. You can overwrite this usage by setting the
$ProjectName variable in `dockersand.ps1` (for Windows) or the PROJECT_NAME
variable in `dockersand.sh` (for *nix) to the desired base container name.
- Windows users: By default, Windows Terminal may open a *Windows PowerShell*
prompt. Running any `./dockersand` commands in *Windows PowerShell* may trigger
security exceptions. You can avoid these by using the *Command Prompt* or by
running `Unblock-File dockersand.ps1`.

4) Once the build is complete, run `./dockersand start` to start the new containers
for the database and the dirtsand server. Once this command has been run, you should
Expand Down
3 changes: 2 additions & 1 deletion dockersand.bat
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
powershell.exe -ExecutionPolicy Bypass dockersand.ps1
@echo off
powershell.exe -NoProfile -ExecutionPolicy Bypass -File dockersand.ps1

0 comments on commit c92125e

Please sign in to comment.