diff --git a/bin/makepkg.sh b/bin/makepkg.sh index a27836f..e049b17 100755 --- a/bin/makepkg.sh +++ b/bin/makepkg.sh @@ -123,15 +123,23 @@ makebe() { ./build.sh ${be_args[@]} } +post_makepkg() { + cd ${builddir} + git checkout debbuild/DEBIAN/ + git checkout debbuild/22.04/DEBIAN/ +} + case "${m_arg}" in fe) makefe ;; all) makefe - makebe + makebe + post_makepkg ;; be | *) - makebe + makebe + post_makepkg ;; esac \ No newline at end of file