summaryrefslogtreecommitdiff
path: root/morphlib/exts/sysroot.write
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-01-01 00:25:54 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-01-02 13:47:16 +0000
commit807e6a90876c5469d2421a47649d15f06e94ca36 (patch)
treec657fed52e481186758f11893451fdac769cfe11 /morphlib/exts/sysroot.write
parentf33748d6e6795751e7ea628d5f4e8478353a88ee (diff)
downloadmorph-807e6a90876c5469d2421a47649d15f06e94ca36.tar.gz
Add some checks to the sysroot deployment extension
Ensure that a) the deployment directory must not exist b) the extension can not be used to upgrade a system
Diffstat (limited to 'morphlib/exts/sysroot.write')
-rwxr-xr-xmorphlib/exts/sysroot.write4
1 files changed, 1 insertions, 3 deletions
diff --git a/morphlib/exts/sysroot.write b/morphlib/exts/sysroot.write
index 1ae4864f..be315365 100755
--- a/morphlib/exts/sysroot.write
+++ b/morphlib/exts/sysroot.write
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright (C) 2014 Codethink Limited
+# Copyright (C) 2014,2015 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -18,9 +18,7 @@
set -eu
-# Ensure the target is an empty directory
mkdir -p "$2"
-find "$2" -mindepth 1 -delete
# Move the contents of our source directory to our target
# Previously we would (cd "$1" && find -print0 | cpio -0pumd "$absolute_path")