8 lines
154 B
Plaintext
8 lines
154 B
Plaintext
|
#!/bin/bash
|
||
|
# ensure we do not have a lost+found directory in the root folder
|
||
|
# that could cause copy to fail.
|
||
|
set -eu
|
||
|
set -o pipefail
|
||
|
|
||
|
rm -rf lost+found
|