fix $ char not being escaped causing issues
authorSadoon Albader <sadoon@soulserv.xyz>
Sat, 19 Aug 2023 11:23:46 +0000 (14:23 +0300)
committerSadoon Albader <sadoon@soulserv.xyz>
Sat, 19 Aug 2023 11:23:46 +0000 (14:23 +0300)
install-sbuild-apt-reqs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 4f6ac1b..91d3ecc
@@ -23,30 +23,30 @@ tee /home/$SUDO_USER/.sbuildrc << EOF
 # PACKAGE BUILD RELATED (additionally produce _source.changes)
 ##############################################################################
 # -d
-$distribution = '$RELEASE';
+\$distribution = '$RELEASE';
 # -A
-$build_arch_all = 1;
+\$build_arch_all = 1;
 # -s
-$build_source = 1;
+\$build_source = 0;
 # --source-only-changes (applicable for dput. irrelevant for dgit push-source).
-$source_only_changes = 1;
+\$source_only_changes = 1;
 # -v
-$verbose = 1;
+\$verbose = 1;
 # parallel build
-$ENV{'DEB_BUILD_OPTIONS'} = 'parallel=5';
+\$ENV{'DEB_BUILD_OPTIONS'} = 'parallel=1';
 ##############################################################################
 # POST-BUILD RELATED (turn off functionality by setting variables to 0)
 ##############################################################################
 
 # We are not running lintian, piuparts, and autopkgtest for now to speed
 # up builds. Will be enabled in the future when necessary.
-$run_lintian = 0;
-$lintian_opts = ['-i', '-I'];
-$run_piuparts = 0;
-$piuparts_opts = ['--schroot', '%r-%a-sbuild', '--no-eatmydata'];
-$run_autopkgtest = 0;
-$autopkgtest_root_args = '';
-$autopkgtest_opts = [ '--', 'schroot', '%r-%a-sbuild' ];
+\$run_lintian = 0;
+\$lintian_opts = ['-i', '-I'];
+\$run_piuparts = 0;
+\$piuparts_opts = ['--schroot', '%r-%a-sbuild', '--no-eatmydata'];
+\$run_autopkgtest = 0;
+\$autopkgtest_root_args = '';
+\$autopkgtest_opts = [ '--', 'schroot', '%r-%a-sbuild' ];
 
 ##############################################################################
 # PERL MAGIC