papakay
Hello, please i’m having issue deploying to a digitalocean droplet (Ubuntu 16.04.3).
Please find below the error details:
Output of the command is shown above and the command executed
on that host is printed below for debugging purposes:
FAILED with exit status 255:
current_shell="$0" || :
[ -z "$current_shell" ] && current_shell="$SHELL"
case "$current_shell" in
(*bash*) echo 'bash is installed and the default shell' ;;
(*zsh*) echo 'zsh is installed and the default shell' ;;
(*)
echo
echo "You are using an unsupported shell: '$current_shell'"
echo "edeliver requires either bash or zsh to be installed"
echo "and the default shell for the build user 'kehinde'"
echo "on your build host: '46.101.30.23'."
exit 1
;;
esac
set -e
if [ ! -d /home/kehinde/app_name/builds ]
then
mkdir -p /home/kehinde/app_name/builds
cd /home/kehinde/app_name/builds
git init
git config receive.denyCurrentBranch ignore
else
cd /home/kehinde/app_name/builds
git config receive.denyCurrentBranch ignore
fi
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Marked As Solved- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
papakay
I found the issue to be a port issue. Please refer to this link
https://github.com/edeliver/edeliver/issues/230#issuecomment-382800734
Also Liked
kokolegorille
I am sorry, I have little experience with edeliver as I deploy manually.
But what I can tell is the user shell is ok, that would mean the rest is in error.
I cannot really help You, but I would try to run each commands separately, to check which one is failing.
alexandrubagu
Do you have
gitinstalled ? Edeliver adds your build machine as remote and uses the ssh protocol to push the source code of your app there. you can check that by running git remote -v show in you project directory after building on the build host. It shows something like that:Last Post!
joaquinalcerro
So I am following this thread to solve the same issue without success. I will appreciate your help in this matter.
Environment
Elixir 1.6.6 (compiled with OTP 20)
edeliver v1.4.5 | GitHub - edeliver/edeliver: Deployment for Elixir and Erlang · GitHub
distillery 1.5.3
OpenSuse Leap 15 (my laptop) with name: linux-6h0b
Build Server: Ubuntu 16.04
Production Server: Ubuntu 16.04
The problem
My .deliver/config file
I have configured
I don’t understand
Thanks for your help.