mirror of
https://github.com/MiSTer-devel/Arcade-LadyBug_MiSTer.git
synced 2026-05-17 03:02:25 +00:00
Merge pull request #2 from hubertbanas/master
Fix check_permissions function
This commit is contained in:
@@ -18,8 +18,8 @@ check_dependencies() {
|
||||
}
|
||||
|
||||
check_permissions () {
|
||||
if [ ! -w . ]; then
|
||||
exit_with_error "Cannot write to\n$PWD"
|
||||
if [ ! -w ${BASEDIR} ]; then
|
||||
exit_with_error "Cannot write to\n${BASEDIR}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user