From 38f6594d48178e898805c524c142ebe182285dcc Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Mon, 17 Apr 2023 11:57:57 -0400 Subject: [PATCH] specifications: fix typo (#4098) Signed-off-by: Robert P. J. Day --- specifications/core20-plugins.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specifications/core20-plugins.org b/specifications/core20-plugins.org index 9118951191..7140235227 100644 --- a/specifications/core20-plugins.org +++ b/specifications/core20-plugins.org @@ -149,7 +149,7 @@ class SamuraiPlugin(snapcraft.plugins.v2.PluginV2): commands = super().get_build_commands() commands.extend( [ - "samurai -j $SNAPCRAFT_SAMURAI_ARGS $SNAPCRAFT_PARALELL_BUILD_COUNT", + "samurai -j $SNAPCRAFT_SAMURAI_ARGS $SNAPCRAFT_PARALLEL_BUILD_COUNT", "samurai install DESTDIR=$SNAPCRAFT_PART_INSTALL", ] ) @@ -215,6 +215,6 @@ parts: build-environment: SNAPCRAFT_SAMURAI_ARGS: "--seppuku" override-build: | - samurai -j $SNAPCRAFT_PARALELL_BUILD_COUNT + samurai -j $SNAPCRAFT_PARALLEL_BUILD_COUNT samurai $SNAPCRAFT_SAMURAI_INSTALL_TARGET DESTDIR=$SNAPCRAFT_PART_INSTALL #+END_SRC