diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-11-23 01:12:54 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-11-23 01:12:54 +0000 |
commit | 4550af4ee72294a33b845e717d188e68097e5c41 (patch) | |
tree | 006643aab7934daa07b1329bbf2d242b34530569 /cpp/makedist.py | |
parent | Bug fix (diff) | |
download | ice-4550af4ee72294a33b845e717d188e68097e5c41.tar.bz2 ice-4550af4ee72294a33b845e717d188e68097e5c41.tar.xz ice-4550af4ee72294a33b845e717d188e68097e5c41.zip |
remove .dummy files
Diffstat (limited to 'cpp/makedist.py')
-rwxr-xr-x | cpp/makedist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/makedist.py b/cpp/makedist.py index be3c1faea28..e9667d0a499 100755 --- a/cpp/makedist.py +++ b/cpp/makedist.py @@ -196,8 +196,9 @@ os.system("cvs -z5 -d cvs.mutablerealms.com:/home/cvsroot export " + tag + " ice # Remove files. # filesToRemove = [ \ - "ice/makedist.py", \ + os.path.join("ice", "makedist.py"), \ ] +filesToRemove.extend(find("ice", ".dummy")) for x in filesToRemove: os.remove(x) |