Skip to content

Commit 0875f17

Browse files
Update add_links.sh
Ensure add_links.sh uses python3
1 parent d8145c4 commit 0875f17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

add_links.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ mkdir docs/"$directory"_tmp
1010

1111
(cd docs/"$directory"; tar cf - .) | (cd docs/"$directory"_tmp; tar xvf - )
1212

13-
python link_to_latest.py docs/"$directory"_tmp/stan-users-guide "Stan User's Guide"
14-
python link_to_latest.py docs/"$directory"_tmp/reference-manual "Stan Reference Manual"
15-
python link_to_latest.py docs/"$directory"_tmp/functions-reference "Stan Functions Reference"
13+
python3 link_to_latest.py docs/"$directory"_tmp/stan-users-guide "Stan User's Guide"
14+
python3 link_to_latest.py docs/"$directory"_tmp/reference-manual "Stan Reference Manual"
15+
python3 link_to_latest.py docs/"$directory"_tmp/functions-reference "Stan Functions Reference"
1616

1717
mv docs/"$directory" docs/"$directory"_bak
1818
mv docs/"$directory"_tmp/ docs/"$directory"

0 commit comments

Comments
 (0)