From 847fd59e7cef984fcc1aa4cbd13e5a676eb9feef Mon Sep 17 00:00:00 2001 From: bryan Date: Sun, 29 Jan 2023 20:59:24 -0500 Subject: [PATCH] Fix bin dirs --- openwrtbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrtbuilder b/openwrtbuilder index c968579..d68f670 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -801,7 +801,7 @@ main() { declare -g RELEASE="${USER_RELEASE:=${P_ARR[release]:=$RELEASE}}" declare -g BUILDDIR="$SRCDIR/$profile/$RELEASE" declare -g FILESYSTEM="${P_ARR[filesystem]:="squashfs"}" - declare -g THIS_BINDIR="$BINDIR/$profile/${P_ARR[profile]}-$RELEASE" + declare -g THIS_BINDIR="$BINDIR/$profile/$RELEASE" if [[ "$RELEASE" == "snapshot" ]]; then declare url_prefix="https://downloads.openwrt.org/snapshots/targets/${P_ARR[target]}"