Skip to content

Commit

Permalink
ci: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Sep 10, 2023
1 parent 2baa343 commit 1dbe322
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/ProjectRoot/build-docs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -euxo pipefail

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/gameci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ jobs:

- run: |
ls -lR
- run: |
ls -lR Packages/nadena*
- uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion UnitTests~/DocsBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static void BuildDocs()
private static void RunProcess(string command)
{
System.Console.Error.WriteLine("=== Running command: " + command + " ===");
var process = Process.Start("/bin/sh", command);
var process = Process.Start("/bin/bash", command);
process.WaitForExit();

if (process.ExitCode != 0)
Expand Down

0 comments on commit 1dbe322

Please sign in to comment.