I’m trying to encrypt sensitive environment variables with “travis encrypt SOMEVAR=“value” --add”
What I want to encrypt is Team A?B!
that includes space.
I did it with quoting because there is space!!
Like this.
travis encrypt SOMEVAR="Team A?B!" --add
But it doesn’t work. when I tried to encrypt just Team
, I works very well…
Anybody can help me?