diff --git a/.github/workflows/release_docker.yml b/.github/workflows/release_docker.yml index 914a46fa6..a78a8add3 100644 --- a/.github/workflows/release_docker.yml +++ b/.github/workflows/release_docker.yml @@ -14,23 +14,23 @@ jobs: uses: actions/setup-python@v4 with: python-version: '3.x' - + - name: Install dependencies run: | python -m pip install --upgrade pip pip install toml # Install any other dependencies your script might need - + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - + - name: Login to Docker Hub if: github.event_name != 'pull_request' uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - + - name: Determine version id: version run: | @@ -44,4 +44,4 @@ jobs: run: python build-tools/docker/build.py --push --docker-hub-user ${{ secrets.DOCKERHUB_USERNAME }} --version ${{ steps.version.outputs.VERSION }} --latest env: - DOCKER_BUILDKIT: 1 \ No newline at end of file + DOCKER_BUILDKIT: 1 diff --git a/.gitignore b/.gitignore index 34b6f83fd..8083c11e6 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,7 @@ #exclude python env env/ -#exclude env +#exclude env .env # Test Python cache diff --git a/build-tools/win/create-nsis-script.ps1 b/build-tools/win/create-nsis-script.ps1 index 995fa2e37..d756537ca 100644 --- a/build-tools/win/create-nsis-script.ps1 +++ b/build-tools/win/create-nsis-script.ps1 @@ -85,7 +85,7 @@ Section "Uninstall" ; Remove shortcuts Delete "`${DESKTOP}\`${APPNAME}.lnk" Delete "`${SMPROGRAMS}\`${COMPANYNAME}\`${APPNAME}.lnk" - RMDir "`${SMPROGRAMS}\`${COMPANYNAME}" + RMDir "`${SMPROGRAMS}\`${COMPANYNAME}" ; Remove directories used RMDir "`$`INSTDIR" @@ -97,4 +97,4 @@ SectionEnd # Remove any potential UTF-8 BOM and ensure ASCII encoding $NSIS_SCRIPT = $NSIS_SCRIPT.TrimStart([char]0xFEFF) -[System.IO.File]::WriteAllLines("installer.nsi", $NSIS_SCRIPT) \ No newline at end of file +[System.IO.File]::WriteAllLines("installer.nsi", $NSIS_SCRIPT)