forked from jquery-archive/jquery-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: Remove log as the info is now in the files from the nightly…
…/latest build. Fix output name for the same
- Loading branch information
1 parent
6a2deea
commit 757dda9
Showing
1 changed file
with
1 addition
and
7 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 |
---|---|---|
|
@@ -13,6 +13,7 @@ JQUERY = $(shell grep Library js/jquery.js | sed s'/ \* jQuery JavaScript Librar | |
|
||
# The directory to create the zipped files in and also serves as the filenames | ||
DIR = jquery.mobile-${VER} | ||
nightly: DIR = jquery.mobile | ||
|
||
# The output folder for the finished files | ||
OUTPUT = compiled | ||
|
@@ -24,7 +25,6 @@ RMLATEST = echo "" | |
NIGHTLY_OUTPUT = nightlies/${DATE} | ||
ifeq (${NIGHTLY_OUTPUT}, latest) | ||
RMLATEST = ssh [email protected] 'rm -rf /var/www/html/code.jquery.com/mobile/latest' | ||
DIR = jquery.mobile | ||
endif | ||
NIGHTLY_WEBPATH = http://code.jquery.com/mobile/${NIGHTLY_OUTPUT} | ||
|
||
|
@@ -136,12 +136,6 @@ zip: init js min css cssmin | |
|
||
# Used by the jQuery team to make the nightly builds | ||
nightly: pull zip | ||
# Create a log that lists the current version according to the code and the git information for the last commit | ||
@@echo $$"\nGit Release Version: " >> ${OUTPUT}/log.txt | ||
@@cat version.txt >> ${OUTPUT}/log.txt | ||
@@echo $$"\nGit Information for this build:" >> ${OUTPUT}/log.txt | ||
@@git log -1 --format=format:"SHA1: %H \nDate: %cd \nTitle: %s" >> ${OUTPUT}/log.txt | ||
|
||
# Create the folder to hold the files for the demos | ||
@@mkdir -p ${VER} | ||
|
||
|