Skip to content

Commit

Permalink
Fix shebangs and make scripts executable
Browse files Browse the repository at this point in the history
  • Loading branch information
mid-kid committed Jul 26, 2023
1 parent 1ee37ac commit ee4595d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,14 @@ cd pokeplatinum
# 3. Building
To set up the build system, run:
```
sh config.sh
./config.sh
```
This is only required once. If the process is successful, you will see a new 'build' folder in the repository.
To build the rom, run:
```
sh build.sh
./build.sh
```
If everything works, then the following ROM should be built:
Expand Down
2 changes: 1 addition & 1 deletion build.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh

# Set up env variable to show % of completion during ninja build
export NINJA_STATUS="[%p %f/%t] "
Expand Down
2 changes: 1 addition & 1 deletion clean.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
#!/bin/sh

ninja -C build clean
2 changes: 1 addition & 1 deletion config.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
set -e

build="build"
Expand Down
Empty file modified replace.sh
100644 → 100755
Empty file.

0 comments on commit ee4595d

Please sign in to comment.