Skip to content

Commit 3f7f86a

Browse files
authored
Showing the number of items to be deleted in Krokiet, before deletion. (#1589)
1 parent f25ccfe commit 3f7f86a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1465
-721
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Build Release
3333
if: ${{ github.ref == 'refs/heads/master' }}
3434
run: |
35-
sed -i 's/#lto = "thin"/lto = "thin"/g' Cargo.toml
35+
sed -i 's/#lto = /lto = /g' Cargo.toml
3636
3737
echo "VERS=release" >> $GITHUB_ENV
3838
@@ -145,7 +145,7 @@ jobs:
145145
- name: Build Release
146146
if: ${{ github.ref == 'refs/heads/master' }}
147147
run: |
148-
sed -i 's/#lto = "thin"/lto = "thin"/g' Cargo.toml
148+
sed -i 's/#lto = /lto = /g' Cargo.toml
149149
cargo build --release --bin czkawka_cli --target x86_64-unknown-linux-musl
150150
151151
mv target/x86_64-unknown-linux-musl/release/czkawka_cli linux_czkawka_cli_musl

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Compile Krokiet Release
2727
if: ${{ github.ref == 'refs/heads/master' }}
2828
run: |
29-
sed -i 's/#lto = "thin"/lto = "thin"/g' Cargo.toml
29+
sed -i 's/#lto = /lto = /g' Cargo.toml
3030
cargo build --release --target x86_64-pc-windows-gnu --bin krokiet
3131
mv target/x86_64-pc-windows-gnu/release/krokiet.exe windows_krokiet_on_linux.exe
3232
@@ -75,7 +75,7 @@ jobs:
7575
# - name: Compile Krokiet Release
7676
# if: ${{ github.ref == 'refs/heads/master' }}
7777
# run: |
78-
# sed -i 's/#lto = "thin"/lto = "thin"/g' Cargo.toml
78+
# sed -i 's/#lto = /lto = /g' Cargo.toml
7979
# cargo build --release --bin krokiet --no-default-features --features "winit_skia_opengl,winit_software"
8080
# mv target/release/krokiet.exe windows_krokiet_on_windows_skia_opengl.exe
8181
# cargo build --release --bin krokiet --no-default-features --features "winit_skia_vulkan,winit_software"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ benchmarks
3030
TestFiles
3131
*.txt
3232
.venv
33-
charts
33+
charts*

0 commit comments

Comments
 (0)