mirror of
https://github.com/akuker/RASCSI.git
synced 2025-01-02 09:35:58 +00:00
Try to prevent frequent sudo timeout after compiling rascsi (#636)
* Try to prevent frequent sudo timeout after compiling rascsi * Fix typo
This commit is contained in:
parent
7c1020a40b
commit
38f8191a45
@ -87,7 +87,10 @@ function compileRaScsi() {
|
||||
cd "$BASE/src/raspberrypi" || exit 1
|
||||
|
||||
echo "Compiling with ${CORES:-1} simultaneous cores..."
|
||||
( make clean && make -j "${CORES:-1}" all CONNECT_TYPE="${CONNECT_TYPE:-FULLSPEC}" ) </dev/null
|
||||
make clean </dev/null
|
||||
sudo -v
|
||||
make -j "${CORES:-1}" all CONNECT_TYPE="${CONNECT_TYPE:-FULLSPEC}" </dev/null
|
||||
sudo -v
|
||||
}
|
||||
|
||||
function cleanupOutdatedManPage() {
|
||||
|
Loading…
Reference in New Issue
Block a user