Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Fix build-docs.sh command list output #27

Merged
merged 1 commit into from
May 6, 2015
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
4 changes: 2 additions & 2 deletions docs/build-docs.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/env sh
#!/usr/bin/env sh

# build the CLI docs - dump into cli.rst
for cmd in `./situp.py|head -n2|tail -n1|awk -F : '{print $2}'`;
for cmd in `../situp.py|head -n2|tail -n1|awk -F : '{print $2}'`;
do echo $cmd;
done
# run sphinx, writing to tmp
Expand Down