Skip to content

Commit

Permalink
Fix common script paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevithakannan2 committed Oct 1, 2024
1 parent 476dbf3 commit 6b0f310
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/office-suites/freeoffice.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installFreeOffice() {
if ! command_exists softmaker-freeoffice-2024 freeoffice softmaker; then
Expand Down
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/office-suites/libreoffice.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installLibreOffice() {
if ! command_exists libreoffice; then
Expand Down
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/office-suites/onlyoffice.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installOnlyOffice() {
if ! command_exists onlyoffice-desktopeditors; then
Expand Down
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/office-suites/wpsoffice.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installWpsOffice() {
if ! command_exists com.wps.Office; then
Expand Down
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/pdf-suites/evince.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installEvince() {
if ! command_exists evince; then
Expand Down
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/pdf-suites/okular.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installOkular() {
if ! command_exists okular; then
Expand Down
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/pdf-suites/pdfstudio.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installPdfstudio() {
if ! command_exists pdfstudio2024; then
Expand Down
2 changes: 1 addition & 1 deletion core/tabs/applications-setup/pdf-suites/pdfstudioviewer.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

. ../common-script.sh
. ../../common-script.sh

installPdfstudioviewer() {
if ! command_exists pdfstudioviewer2024; then
Expand Down

0 comments on commit 6b0f310

Please sign in to comment.