Hey everybody I am trying to create a pulumi packa...
# package-authoring
e
Hey everybody I am trying to create a pulumi package and trying to run
Copy code
make build install
but there is something weird with the versions, so running
Copy code
pulumictl get version
returns 0.0.1-alpha.1685580978+4aae2ffb.dirty, where is that coming from and how do I change it?
s
I am not familiar with that Makefile, but
0.0.1-alpha.1685580978+4aae2ffb.dirty
is the classic output of
git describe
.
dirty = "git status" is not clean in the local directory 0.0.1.-alpha = the "closest" tag on the branch you are on and similar.
You need to commit what is around (or remove the changes) and make another tag...
e
Thank you! I didn't think about it coming from the local git, for some reason I imagined it was from upstream.