7 lines
88 B
Bash
7 lines
88 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
blender --python run.py
|
||
|
if [ $? -eq 42 ]; then
|
||
|
blender --python run.py
|
||
|
fi
|