mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-23 02:41:01 -07:00
14 lines
246 B
Bash
Executable file
14 lines
246 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# Extract strings from all plugins
|
|
#
|
|
|
|
scriptdir=$(dirname $0)
|
|
dir=$1; shift
|
|
dest=$1; shift
|
|
|
|
for file in $(find -L "$dir" -name plugin.json | grep -v 'tests'); do
|
|
python3 $scriptdir/createplugincontext.py $file $dir $dest
|
|
done
|
|
|
|
|