Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes sed error with urls using the dash delimiter. #19

Merged
merged 1 commit into from
Nov 12, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixes sed error with urls using the dash delimiter.
  • Loading branch information
darioghilardi committed Oct 13, 2013
commit d5e5d7e1d22dd1a83baf22fc0907388e22ff054b
2 changes: 1 addition & 1 deletion tasks/deployments.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ module.exports = function(grunt) {

backup_path: "<%= backups_dir %>/<%= env %>/<%= date %>/<%= time %>",

search_replace: "sed -i '' 's/<%= search %>/<%= replace %>/g' <%= path %>",
search_replace: "sed -i '' 's#<%= search %>#<%= replace %>#g' <%= path %>",

mysqldump: "mysqldump -u <%= user %> -p<%= pass %> <%= database %>",

Expand Down