commit 63f64eefa9e41e193fe1a7729a7d8591081b6ca2
parent 8a33f2e58022502ab320f0b2bd300d3ff19ff538
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 28 Jul 2023 11:57:13 +0200
Fix copy/paste problem in star-buffer script
The variable used to prevent the file from being included several times
was the wrong one.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/star-buffer.sh b/src/star-buffer.sh
@@ -15,8 +15,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-[ -n "${STAR_MESH_SH}" ] && return
-export STAR_MESH_SH=1
+[ -n "${STAR_BUFFER_SH}" ] && return
+export STAR_BUFFER_SH=1
. "build.sh"
. "rsys.sh"