-
-
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.
Deprecated the usage of ~ tilde on Makefile because it was not
being expanded: visionmedia/deploy#18 https://unix.stackexchange.com/questions/151850/why-doesnt-the-tilde-expand-inside-double-quotes
- Loading branch information
1 parent
392f031
commit f5bbbd5
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
|
@@ -80,7 +80,7 @@ ifeq (${UFSCTHESISX_MAINTEX_DIRECTORY},) | |
endif | ||
|
||
ifeq (${UFSCTHESISX_ROOT_DIRECTORY},) | ||
UFSCTHESISX_ROOT_DIRECTORY := ~/LatexBuild | ||
UFSCTHESISX_ROOT_DIRECTORY := LatexBuild | ||
endif | ||
|
||
ifeq (${UFSCTHESISX_REMOTE_PASSWORD},) | ||
|
@@ -599,23 +599,23 @@ endef | |
## You can define the following parameters: | ||
## 4. args - arguments to pass to the rsync program, see 'rsync --help' | ||
## 3. rules - the rules/arguments to pass to the remote invocation of make | ||
## 5. UFSCTHESISX_ROOT_DIRECTORY - the directory to put the files, defaults to '~/LatexBuild' | ||
## 5. UFSCTHESISX_ROOT_DIRECTORY - the directory to put the files, defaults to 'LatexBuild' | ||
## 1. UFSCTHESISX_REMOTE_PASSWORD - the remote machine SHH password, defaults to 'admin123' | ||
## 2. UFSCTHESISX_REMOTE_ADDRESS - the remote machine 'user@ipaddress', defaults to '[email protected]' | ||
## | ||
## Example usage for Linux: | ||
## make remote rules="latex debug=1" && | ||
## debug=1 && | ||
## args="--delete" | ||
## UFSCTHESISX_ROOT_DIRECTORY=~/Downloads/Thesis && | ||
## [email protected] && | ||
## UFSCTHESISX_REMOTE_PASSWORD=123 && | ||
## UFSCTHESISX_ROOT_DIRECTORY="Downloads/Thesis" && | ||
## UFSCTHESISX_REMOTE_ADDRESS="[email protected]" && | ||
## UFSCTHESISX_REMOTE_PASSWORD="123" && | ||
## | ||
## Example usage for Windows: | ||
## set "rules=latex debug=1" && | ||
## set "debug=1" && | ||
## set "args=--delete" && | ||
## set "UFSCTHESISX_ROOT_DIRECTORY=~/Downloads/Thesis" && | ||
## set "UFSCTHESISX_ROOT_DIRECTORY=Downloads/Thesis" && | ||
## set "[email protected]" && | ||
## set "UFSCTHESISX_REMOTE_PASSWORD=123" && | ||
## make remote | ||
|