Startup script requires BASH -- must be sh compatible for Ubuntu

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: Low
    • Component/s: None
    • None

      NOTE: This bug report is for Confluence Cloud. Using Confluence Server? See the corresponding bug report.

      The startup script uses pushd and popd, which may not port to all systems. A fix is included below:

      before:

      pushd $SOMEDIR
      do_something
      popd

      after:

      PUSHED_DIR=`pwd`
      cd $SOMEDIR
      do_something
      cd $PUSHED_DIR

              Assignee:
              Mel Nicholson [Atlassian]
              Reporter:
              Mel Nicholson [Atlassian]
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved: