Mac OS向けにオプションを変更:
```
--- a/tasks/build.rake
+++ b/tasks/build.rake
@@ -24,12 +24,14 @@ task :build do
if os == :linux
sh 'grep -l -r ecx.images-amazon.com | sort | uniq | xargs --no-run-if-empty sed -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
sh 'grep -l -r "http://www.amazon.co.jp/exec" | sort | uniq | xargs --no-run-if-empty sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
+ sh 'find . -type f -name "*.mde" | xargs --no-run-if-empty rm || true'
+ sh 'find . -type f -name "*.md-e" | xargs --no-run-if-empty rm || true'
else
- sh 'grep -l -r ecx.images-amazon.com | sort | uniq | xargs d -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
- sh 'grep -l -r "http://www.amazon.co.jp/exec" | sort | uniq | xargs sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
+ sh 'grep -l -r ecx.images-amazon.com . | sort | uniq | xargs d -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
+ sh 'grep -l -r "http://www.amazon.co.jp/exec" . | sort | uniq | xargs sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
+ sh 'find . -type f -name "*.mde" | xargs rm || true'
+ sh 'find . -type f -name "*.md-e" | xargs rm || true'
end
- sh 'find . -type f -name "*.mde" | xargs --no-run-if-empty rm || true'
- sh 'find . -type f -name "*.md-e" | xargs --no-run-if-empty rm || true'
end
cd 'public' do
```
This commit is contained in:
parent
9743683075
commit
522b11ce16
10
tasks/build.rake
Normal file → Executable file
10
tasks/build.rake
Normal file → Executable file
@ -24,12 +24,14 @@ task :build do
|
||||
if os == :linux
|
||||
sh 'grep -l -r ecx.images-amazon.com | sort | uniq | xargs --no-run-if-empty sed -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
|
||||
sh 'grep -l -r "http://www.amazon.co.jp/exec" | sort | uniq | xargs --no-run-if-empty sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
|
||||
sh 'find . -type f -name "*.mde" | xargs --no-run-if-empty rm || true'
|
||||
sh 'find . -type f -name "*.md-e" | xargs --no-run-if-empty rm || true'
|
||||
else
|
||||
sh 'grep -l -r ecx.images-amazon.com | sort | uniq | xargs d -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
|
||||
sh 'grep -l -r "http://www.amazon.co.jp/exec" | sort | uniq | xargs sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
|
||||
sh 'grep -l -r ecx.images-amazon.com . | sort | uniq | xargs d -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
|
||||
sh 'grep -l -r "http://www.amazon.co.jp/exec" . | sort | uniq | xargs sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
|
||||
sh 'find . -type f -name "*.mde" | xargs rm || true'
|
||||
sh 'find . -type f -name "*.md-e" | xargs rm || true'
|
||||
end
|
||||
sh 'find . -type f -name "*.mde" | xargs --no-run-if-empty rm || true'
|
||||
sh 'find . -type f -name "*.md-e" | xargs --no-run-if-empty rm || true'
|
||||
end
|
||||
|
||||
cd 'public' do
|
||||
|
||||
Loading…
Reference in New Issue
Block a user