diff --git a/create_linux_staging_gnome_installers.sh b/create_linux_staging_gnome_installers.sh index b240624..69eddef 100755 --- a/create_linux_staging_gnome_installers.sh +++ b/create_linux_staging_gnome_installers.sh @@ -71,16 +71,16 @@ OBS_DEB_PKS+="deb11 " OBS_DEB_GNOME_EXT+="v34 " OBS_DEB_ARCHS+="Debian_12/i386 " OBS_DEB_PKS+="deb12 " -OBS_DEB_GNOME_EXT+="0 " +OBS_DEB_GNOME_EXT+="v46 " OBS_DEB_ARCHS+="Debian_12/amd64 " OBS_DEB_PKS+="deb12 " -OBS_DEB_GNOME_EXT+="0 " +OBS_DEB_GNOME_EXT+="v46 " OBS_DEB_ARCHS+="Debian_Unstable/amd64 " OBS_DEB_PKS+="debunstable " -OBS_DEB_GNOME_EXT+="v34 " +OBS_DEB_GNOME_EXT+="v46 " OBS_DEB_ARCHS+="Debian_Testing/amd64 " OBS_DEB_PKS+="debtest " -OBS_DEB_GNOME_EXT+="v34 " +OBS_DEB_GNOME_EXT+="v46 " OBS_DEB_ARCHS+="xUbuntu_16.04/i386 " OBS_DEB_PKS+="xenial1604 " OBS_DEB_GNOME_EXT+="v26 " @@ -132,6 +132,7 @@ create_gnome_extension_tar() { if [ "${GNOME_EXT}" != "v26" ] && [ "${GNOME_EXT}" != "v34" ] && + [ "${GNOME_EXT}" != "v46" ] && [ "${GNOME_EXT}" != "master" ] ; then return fi @@ -203,6 +204,9 @@ create_rpm_tar() { if [ "${GNOME_EXT}" == "v34" ] && [ -f gnome-shell-extension-v34.tar.xz ] ; then cp -f gnome-shell-extension-v34.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz fi + if [ "${GNOME_EXT}" == "v46" ] && [ -f gnome-shell-extension-v46.tar.xz ] ; then + cp -f gnome-shell-extension-v46.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz + fi if [ "${GNOME_EXT}" == "master" ] && [ -f gnome-shell-extension-master.tar.xz ] ; then cp -f gnome-shell-extension-master.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz fi @@ -340,6 +344,9 @@ create_deb_tar() { if [ "${GNOME_EXT}" == "v34" ] && [ -f gnome-shell-extension-v34.tar.xz ] ; then cp -f gnome-shell-extension-v34.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz fi + if [ "${GNOME_EXT}" == "v46" ] && [ -f gnome-shell-extension-v46.tar.xz ] ; then + cp -f gnome-shell-extension-v46.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz + fi if [ "${GNOME_EXT}" == "master" ] && [ -f gnome-shell-extension-master.tar.xz ] ; then cp -f gnome-shell-extension-master.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz fi @@ -437,6 +444,9 @@ create_pac_tar() { if [ "${GNOME_EXT}" == "v34" ] && [ -f gnome-shell-extension-v34.tar.xz ] ; then cp -f gnome-shell-extension-v34.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz fi + if [ "${GNOME_EXT}" == "v46" ] && [ -f gnome-shell-extension-v46.tar.xz ] ; then + cp -f gnome-shell-extension-v46.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz + fi if [ "${GNOME_EXT}" == "master" ] && [ -f gnome-shell-extension-master.tar.xz ] ; then cp -f gnome-shell-extension-master.tar.xz ${TAR_DIR}/gnome-shell-extension.tar.xz fi