Closed
Bug 896867
Opened 12 years ago
Closed 12 years ago
"pushd not found" running from makefile in vagrant
Categories
(Socorro :: Infra, task)
Socorro
Infra
Tracking
(Not tracked)
RESOLVED
FIXED
55
People
(Reporter: rhelmer, Assigned: rhelmer)
Details
(Whiteboard: [qa-])
Debian/Ubuntu use a minimal shell in /bin/sh so it doesn't have built-ins like pushd and popd:
pushd webapp-django; ./bin/jenkins.sh; popd
/bin/sh: 1: pushd: not found
Make will fork a subprocess so it's safe to do this:
cd webapp-django; ./bin/jenkins.sh
Assignee | ||
Comment 1•12 years ago
|
||
Flags: needinfo?(chris.lonnen)
Comment 2•12 years ago
|
||
Commits pushed to master at https://github.com/mozilla/socorro
https://github.com/mozilla/socorro/commit/a36ff56c28685f7cb3493fc6af8d4b84e19c6fe4
bug 896867 - debian/ubuntu use minimal shell w/o pushd/popd built-ins
https://github.com/mozilla/socorro/commit/6eaeaa0451a951df96bd1554fbbcca5d16e4ce76
Merge pull request #1356 from rhelmer/bug896867-pushd-not-found
bug 896867 - debian/ubuntu use minimal shell w/o pushd/popd built-ins
Comment 3•12 years ago
|
||
Commits pushed to master at https://github.com/mozilla/socorro
https://github.com/mozilla/socorro/commit/ab0e2bbaaae405a5c179db6ebc44b82c6acdbe3e
fixes bug 896867 - yet another case of debian/ubuntu using minimal shell w/o pushd/popd built-ins
https://github.com/mozilla/socorro/commit/e51140f83dc51783b10af0678db4ba645ad5e1dc
Merge pull request #1357 from rhelmer/bug896867-pushd-not-found
fixes bug 896867 - yet another case of debian/ubuntu using minimal shell...
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Comment 4•12 years ago
|
||
Commits pushed to master at https://github.com/mozilla/socorro
https://github.com/mozilla/socorro/commit/93fc5541d7af1d79a5df6bd831ad8b181b223fda
bug 896867 followup - these scripts require bash
https://github.com/mozilla/socorro/commit/59fcd10d81b9ee038ab0b5f3b0a81928cad30279
Merge pull request #1358 from rhelmer/bug896867-pushd-not-found
bug 896867 followup - these scripts require bash
Updated•12 years ago
|
Target Milestone: --- → 55
Updated•12 years ago
|
Whiteboard: [qa-]
Updated•12 years ago
|
Flags: needinfo?(chris.lonnen)
You need to log in
before you can comment on or make changes to this bug.
Description
•