mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09:00
mkosi: Skip sync script if NO_BUILD is enabled
If we're not doing a build, there's no point in syncing either so lets skip it.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
set -e
|
||||
set -o nounset
|
||||
|
||||
if ((${NO_SYNC:-0})); then
|
||||
if ((${NO_SYNC:-0})) || ((${NO_BUILD:-0})); then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user