-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed off by one error for dates in the last week
- Loading branch information
jgillula
committed
Jun 23, 2019
1 parent
cf6845f
commit 7c911b5
Showing
3 changed files
with
15 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# First get the version number directly from the install.rdf file | ||
version_number=`sed -n -e 's|.*<em:version>\(.*\)</em:version>|\1|p' src/install.rdf` | ||
|
||
# Go into the source directory... | ||
cd src | ||
|
||
# Delete any extraneous files | ||
find . -name *~ -delete | ||
|
||
# And make the xpi file by zipping stuff up! | ||
zip -r ../enhanced_date_formatter-$version_number-tb.xpi * |
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