We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd2ba5 commit 16738daCopy full SHA for 16738da
1 file changed
translationStringsUpdate.bat
@@ -1,12 +1,16 @@
1
@ECHO off
2
SETLOCAL enabledelayedexpansion
3
4
-SET py_files = ""
+TYPE NUL >pyfiles.txt
5
+
6
FOR /r %%f IN (*.py) DO (
- SET py_files=!py_files! "!%%f!"
7
+ ECHO | SET /p=%%f>>pyfiles.txt
8
+ ECHO | SET /p= >>pyfiles.txt
9
)
10
11
FOR %%f IN (./languages/src/*.ts) DO (
12
ECHO Updating %%f...
- pylupdate5 %py_files% -ts ./languages/src/%%f
13
+ pylupdate5 <pyfiles.txt -ts ./languages/src/%%f
14
15
16
+DEL pyfiles.txt
0 commit comments