mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 21:39:17 -04:00
Fractal is a Gtk+ Matrix messaging client written in Rust. Its interface is optimized for collaboration in large groups such as free software projects. WWW: https://wiki.gnome.org/Apps/Fractal PR: 226683 Submitted by: Greg V <greg@unrelenting.technology>
11 lines
384 B
Bash
11 lines
384 B
Bash
--- scripts/cargo.sh.orig 2018-09-12 12:22:27 UTC
|
|
+++ scripts/cargo.sh
|
|
@@ -7,7 +7,7 @@ export FRACTAL_NAME_SUFFIX="$5"
|
|
export FRACTAL_VERSION="$6"
|
|
export FRACTAL_PROFILE="$7"
|
|
|
|
-if [[ "$FRACTAL_PROFILE" == "Devel" ]]
|
|
+if [ "$FRACTAL_PROFILE" = "Devel" ]
|
|
then
|
|
echo "DEBUG MODE"
|
|
cargo build --manifest-path $1/Cargo.toml -p fractal-gtk && cp $1/target/debug/fractal-gtk $2
|