-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from mlutfy/issue1-distmaker
Fix unix file permissions on distmaker.sh, and set unix file format on distmaker.conf.dist
- Loading branch information
Showing
2 changed files
with
19 additions
and
19 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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#!/bin/bash | ||
DM_SOURCEDIR= <Set this to your repository checkout root> | ||
DM_GENFILESDIR= <Set this to directory where generated files should reside> | ||
DM_TMPDIR= <Set this to temporary directory> | ||
DM_TARGETDIR= <Set this to directory where tarballs should land> | ||
|
||
DM_PHP= <Set this to your php binary> | ||
DM_RSYNC= <set this to your rsync binary> | ||
DM_ZIP= <set this to your zip binary> | ||
|
||
DM_VERSION= <Set this to whatever the version number should be> | ||
|
||
## Git banch/tag name | ||
DM_REF_CORE=4.2 | ||
DM_REF_DRUPAL=7.x-${DM_REF_CORE} | ||
DM_REF_DRUPAL6=6.x-${DM_REF_CORE} | ||
DM_REF_JOOMLA=${DM_REF_CORE} | ||
DM_REF_WORDPRESS=${DM_REF_CORE} | ||
DM_REF_PACKAGES=${DM_REF_CORE} | ||
#!/bin/bash | ||
DM_SOURCEDIR= <Set this to your repository checkout root> | ||
DM_GENFILESDIR= <Set this to directory where generated files should reside> | ||
DM_TMPDIR= <Set this to temporary directory> | ||
DM_TARGETDIR= <Set this to directory where tarballs should land> | ||
|
||
DM_PHP= <Set this to your php binary> | ||
DM_RSYNC= <set this to your rsync binary> | ||
DM_ZIP= <set this to your zip binary> | ||
|
||
DM_VERSION= <Set this to whatever the version number should be> | ||
|
||
## Git banch/tag name | ||
DM_REF_CORE=4.2 | ||
DM_REF_DRUPAL=7.x-${DM_REF_CORE} | ||
DM_REF_DRUPAL6=6.x-${DM_REF_CORE} | ||
DM_REF_JOOMLA=${DM_REF_CORE} | ||
DM_REF_WORDPRESS=${DM_REF_CORE} | ||
DM_REF_PACKAGES=${DM_REF_CORE} |
Empty file.