Fix deploy problems.
This commit is contained in:
parent
97d1fce474
commit
913996c8f5
|
@ -1,5 +1,5 @@
|
||||||
#!/opt/local/bin/zsh
|
#!/opt/local/bin/zsh
|
||||||
|
|
||||||
find . -type d -exec chmod 755 {} \;
|
find . -type d -exec chmod a+rx {} \;
|
||||||
find . -type f -exec chmod 644 {} \;
|
find . -type f -exec chmod a+r {} \;
|
||||||
\rsync -avzp -e ssh ./_site/ jackknife:/home/justhsu/html/
|
\rsync -avzp -e ssh ./_site/ jackknife:/home/justhsu/html/
|
||||||
|
|
2
site.hs
2
site.hs
|
@ -10,7 +10,7 @@ import Text.Regex
|
||||||
|
|
||||||
config :: Configuration
|
config :: Configuration
|
||||||
config = defaultConfiguration
|
config = defaultConfiguration
|
||||||
{ deployCommand = "./scripts/deploy" }
|
{ deployCommand = "echo `pwd`; ./scripts/deploy.sh" }
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
bibHeaders :: [(String, String, [String])]
|
bibHeaders :: [(String, String, [String])]
|
||||||
|
|
Loading…
Reference in New Issue