Skip to content

Commit

Permalink
chore: some small spacing things
Browse files Browse the repository at this point in the history
  • Loading branch information
iamwacko committed Mar 19, 2024
1 parent f1af351 commit fcf7786
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/bundle/linux/flatpak_bundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@ install:
* @install \"$(TARGET_DIR)/$(RELEASE)/$(BIN_PATH)\" \"$(BIN_DIR)/{APP_ID}\"
* @echo Installing icons into $(SHARE_DIR)/icons/hicolor
* @ls icons/hicolor/32x32/apps
* @ls icons/hicolor/128x128/apps
* @mkdir $(SHARE_DIR)/icons/
* @mkdir -p $(SHARE_DIR)/icons/
* @cp -r icons/ -t $(SHARE_DIR)/icons/
* @# Force cache of icons to refresh
* @mkdir -p $(SHARE_DIR)/applications/
Expand Down Expand Up @@ -422,10 +420,10 @@ fn create_flatpak_yml(path: &Path, settings: &Settings) -> crate::Result<()> {
match settings.build_profile() {
"dev" => {}
"release" => {
cargo_build.push_str("--release ");
cargo_build.push_str(" --release ");
}
custom => {
cargo_build.push_str("--profile ");
cargo_build.push_str(" --profile ");
cargo_build.push_str(custom);
}
}
Expand Down

0 comments on commit fcf7786

Please sign in to comment.