diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-11-26 05:12:57 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-11-26 05:12:57 +0100 |
commit | 58563bded8fb54fde18bac1d35b9598bb9ac8ef2 (patch) | |
tree | 24157a404071450bf58f3d1eb0fe18501a2ed93c /SBO-Lib/lib | |
parent | 19fbafb024973ef8b206f606ed5ffa3753ee44e5 (diff) | |
download | sbotools2-58563bded8fb54fde18bac1d35b9598bb9ac8ef2.tar.xz |
Forgot to include "package-" in the path to remove
Diffstat (limited to 'SBO-Lib/lib')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index 6d3a839..5ec03eb 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -900,8 +900,8 @@ sub make_clean { remove_tree("/tmp/package-$args{SBO}") if not defined $env_tmp and -d "/tmp/package-$args{SBO}"; - remove_tree("$tmpd/$pkg_name") if - -d "$tmpd/$pkg_name"; + remove_tree("$tmpd/package-$pkg_name") if + -d "$tmpd/package-$pkg_name"; } return 1; } |