diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-08-29 08:00:51 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-08-29 08:00:51 +0000 |
commit | a3e9efec5030cdebe3e63fdd9781f068119544db (patch) | |
tree | 00ac3040d6a3521298e8e98489577bf8913d4544 /Tools/portbuild | |
parent | f4528a378f67bf8db6b355e310c2cc79fd37ced2 (diff) | |
download | ports-a3e9efec5030cdebe3e63fdd9781f068119544db.tar.gz ports-a3e9efec5030cdebe3e63fdd9781f068119544db.zip |
A little script that tries to "undo" a package build. Basically just renames
a bunch of directories back. Use it when you want to void a botched build.
Notes
Notes:
svn path=/head/; revision=32077
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/rewind | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/rewind b/Tools/portbuild/scripts/rewind new file mode 100755 index 000000000000..cac375022703 --- /dev/null +++ b/Tools/portbuild/scripts/rewind @@ -0,0 +1,6 @@ +#!/bin/sh +rm -rf errors logs make.* old-errors packages +mv bak/* . +cd .. +rm -rf distfiles +#mv bak/distfiles . |