~writer-devs/writer/trunk

« back to all changes in this revision

Viewing changes to scripts/run.sh

  • Committer: Anthony Huben
  • Date: 2015-04-10 17:45:22 UTC
  • Revision ID: harp37@gmail.com-20150410174522-y2g5cf1yh19s189i
Delete scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
 
4
 
 
5
 
# Compile Writer
6
 
./build.sh
7
 
 
8
 
# Run Writer (if compiling was successful)
9
 
if [ $? -eq 0 ]; then
10
 
 
11
 
    echo
12
 
    echo "RUNNING Writer..."
13
 
    echo "================="
14
 
    echo
15
 
    
16
 
    ../writer
17
 
else
18
 
    echo
19
 
    echo 'Compilation Failed!'
20
 
    echo 'Cannot run Writer!'
21
 
fi
 
 
b'\\ No newline at end of file'