File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ Bugfixes:
11+ - Fix ` docs ` command error due to bad templates (#792 )
12+
1013## [ 0.20.2] - 2021-05-06
1114
1215Bugfixes:
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ for version in $versions; do
66 file1=" ${templatesDir} /docs-search-app-${version} .js"
77 if [ ! -f " ${file1} " ]; then
88 echo " Fetching ${file1} " ;
9- curl " https://github.com/purescript/purescript-docs-search/releases/download/v${version} /docs-search-app.js" -o ${file1}
9+ curl -L " https://github.com/purescript/purescript-docs-search/releases/download/v${version} /docs-search-app.js" -o ${file1}
1010 fi
1111 file2=" ${templatesDir} /purescript-docs-search-${version} "
1212 if [ ! -f " ${file2} " ]; then
1313 echo " Fetching ${file2} " ;
14- curl " https://github.com/purescript/purescript-docs-search/releases/download/v${version} /purescript-docs-search" -o ${file2}
14+ curl -L " https://github.com/purescript/purescript-docs-search/releases/download/v${version} /purescript-docs-search" -o ${file2}
1515 chmod +x " ${file2} "
1616 fi
1717done
Original file line number Diff line number Diff line change 11cabal-version : 2.4
22
33name : spago
4- version : 0.20.2
4+ version : 0.20.3
55description : Please see the README on GitHub at <https://github.com/purescript/spago#readme>
66homepage : https://github.com/purescript/spago#readme
77bug-reports : https://github.com/purescript/spago/issues
You can’t perform that action at this time.
0 commit comments