Skip to content

Commit

Permalink
Convert to bash
Browse files Browse the repository at this point in the history
  • Loading branch information
adikhoff committed Oct 16, 2024
1 parent 1c73cad commit 34a8c8c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 83 deletions.
83 changes: 0 additions & 83 deletions build.py

This file was deleted.

15 changes: 15 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

inputDir = $1
outputDir = $2

migdir = "./_migrated"

touch test.txt
echo 'hello' >> test.txt
mkdir -p $outputDir
cp test.txt $outputDir
cp test.txt $outputDir/index.html

python migrate.py --tiny . $migdir
sphinx-build -b html -j 4 $migdir $outputDir

0 comments on commit 34a8c8c

Please sign in to comment.