mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
12 lines
293 B
Bash
Executable File
12 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script copies the various scripts in the .travisScripts to the
|
|
# /home/travis/bin directory to ensure the current scripts are not lost
|
|
# when we checkout different versions of pdf2htmlEX
|
|
|
|
cp .travisScripts/* $HOME/bin
|
|
|
|
cp dobuild $HOME/bin
|
|
cp doinstall $HOME/bin
|
|
|