Skip to content

Commit

Permalink
fix awk in building uninstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapis committed Dec 18, 2011
1 parent 0fa4a3f commit 19df515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg-install
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ __pkg_build_uninstaller()
printf "#!/usr/bin/env bash\n\n"
__pkg_extract_function __pkg_uninstall_pkg
printf "\nprintf 'Uninstalling $1\\n'\n\n"
awk 'print "__pkg_uninstall_pkg $1"' < ${pkg_list_prefix}_new
awk '{print "__pkg_uninstall_pkg "$1;}' < ${pkg_list_prefix}_new
printf "\n\nprintf 'Uninstalled $1\\n'\n"
} > $2
chmod +x $2
Expand Down

0 comments on commit 19df515

Please sign in to comment.