Skip to content

Commit c7183ac

Browse files
make.sh/clean.sh: Remove unnecessary &&
1 parent b9bd178 commit c7183ac

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
2-
rm -rf build/ &&
2+
rm -rf build/
33
mkdir build

make.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
2-
./clean.sh &&
3-
cd build/ &&
4-
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitArm3DS.cmake ../ &&
5-
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitArm3DS.cmake ../ &&
2+
./clean.sh
3+
cd build/
4+
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitArm3DS.cmake ../
5+
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitArm3DS.cmake ../
66
cmake --build . --target CtrBootManager_a9lh

0 commit comments

Comments
 (0)