mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
8 lines
284 B
Bash
8 lines
284 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# This command makes all files in "$ROOT_OUTDIR" writable by keytest.
|
||
|
#
|
||
|
# This command is useful if you run keytest under a seperate user "keytest" of group "keytest"
|
||
|
. ./shared_variables.sh
|
||
|
find $ROOT_OUTDIR | while read f ; do chmod g+rw $f ; chgrp keytest $f ;done
|