File: makehtml.sh

package info (click to toggle)
moviepy 2.1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 96,920 kB
  • sloc: python: 10,566; makefile: 150; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 209 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/sh
make clean html

# open generated HTML files
if [[ $(uname) == 'Darwin' ]]; then
    open 'build/html/index.html' -a Firefox
elif [[ $(uname) == 'Linux' ]]; then
    firefox build/html/index.html
fi