8 lines
209 B
Batchfile
Executable File
8 lines
209 B
Batchfile
Executable File
@echo off
|
|
echo This script is only intended for use in Onionr development, as it uses a random profile.
|
|
set ONIONR_HOME=data%random%
|
|
echo Using profile: %ONIONR_HOME%
|
|
setlocal
|
|
chdir onionr
|
|
python onionr.py %*
|