Skip to content

Instantly share code, notes, and snippets.

@moutellou
Last active August 29, 2015 14:19
Show Gist options
  • Save moutellou/fbeca1a5dabdea591835 to your computer and use it in GitHub Desktop.
Save moutellou/fbeca1a5dabdea591835 to your computer and use it in GitHub Desktop.
Clear gwt cache
@ECHO OFF
IF "%1" == "/a" GOTO full
ECHO Cleaning...
IF EXIST "%TEMP%\ImageResourceGenerator*" DEL "%TEMP%\ImageResourceGenerator*" /F /Q
IF EXIST "%TEMP%\uiBinder*" DEL "%TEMP%\uiBinder*" /F /Q
IF EXIST "%TEMP%\gwt*" DEL "%TEMP%\gwt*" /F /Q
FOR /D /R %TEMP% %%x IN (gwt*) DO RMDIR /S /Q "%%x"
GOTO end
:full
ECHO Full Clean
FOR /D /R %TEMP% %%x IN (*) DO RMDIR /S /Q "%%x"
DEL "%TEMP%\*" /F /Q
GOTO end
:end
ECHO.
ECHO Done.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment