Skip to content

Commit

Permalink
Make this an error and return 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Villa authored and Alberto Villa committed Feb 1, 2012
1 parent 00d25b6 commit b1af630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ports/portmaster.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--- portmaster.orig 2012-01-31 03:17:17.681285114 +0100
+++ portmaster 2012-02-01 21:25:50.050460217 +0100
+++ portmaster 2012-02-01 22:20:03.810386156 +0100
@@ -125,6 +125,8 @@
if [ -n "$files" ]; then
pm_sv Deleting \'install complete\' flags
Expand Down Expand Up @@ -594,7 +594,7 @@
get_answer_yn n "\n\t===>>> Delete this dependency data"
case "$?" in
- 0) for f in $deplist; do
+ 0) [ -n "$use_pkgng" ] && exit 0 #TODO
+ 0) [ -n "$use_pkgng" ] && exit 1 #TODO
+ for f in $deplist; do
update_contents delete $f $origin
done ;;
Expand Down

0 comments on commit b1af630

Please sign in to comment.