blob: 08f39af8159afe0acb701955b87da6f4031059bd (
plain)
1
2
3
4
5
6
7
8
9
|
rm -rf scratch/*
mkdir scratch/foo
mkdir scratch/bar
ln -s ../foo scratch/bar/baz
# Don't try to rmdir() a symlink
invoke_bfs -L scratch/bar -delete || return 1
bfs_diff scratch
|