forked from ratio/gdata-python-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned up MANIFEST, started working on make-release.sh script which …
…will automate some of the release tasks.
- Loading branch information
1 parent
3112720
commit 7c75ddf
Showing
2 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
echo "The following files are missing or are not checked in:" | ||
hg st | ||
echo "Enter to continue" | ||
read -e YES | ||
echo "The following files are missing from the MANIFEST file:" | ||
cat MANIFEST | sort > sorted-manifest.txt | ||
hg st --clean| sed "s/^C //" | grep -v "^v3" > sorted-allfiles.txt | ||
diff sorted-allfiles.txt sorted-manifest.txt | ||
|